Get Invoice

Retrieves the details of an invoice.

Supply the unique invoice ID to fetch it's details.

Request
path Parameters
id
required
string

ID of the invoice to fetch

Responses
200

Ok

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Internal Server Error

get/invoices/{id}
Request samples
Response samples
application/json
{
  • "id": "string",
  • "account": "string",
  • "contacts": [
    ],
  • "items": [
    ],
  • "totalPrice": 0,
  • "billedPeriod": {
    },
  • "status": "submitted",
  • "payments": [
    ],
  • "stripeInvoiceUrl": "string",
  • "stripeInvoiceId": "string",
  • "stripeInvoiceNumber": "string",
  • "pdfLocation": "string",
  • "chargeInProgress": true
}